home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / video / fly8111-.000 / fly8111- / fly8 / shapes / tower.vx < prev    next >
Text File  |  1979-12-31  |  429b  |  27 lines

  1. /* --------------------------------- tower.vx ------------------------------- */
  2.  
  3. /*
  4.  * This is part of the flight simulator 'fly8'.
  5.  * Author: Eyal Lebedinsky (eyal@ise.canberra.edu.au).
  6.  *
  7.  */
  8.  
  9. /*
  10.  * Object shape: O_TOWER.
  11. */
  12.  
  13. #include "shape.h"
  14.  
  15. #define    W    64
  16. #define    L    1750
  17. #define    S    250
  18. #define    SS    (W/8)
  19. #define    DD    (L+S)/16
  20.  
  21. static VERTEX vx_tower[] = {
  22.     {{0, 0,  0}, V_MOVE},
  23.     {{0, 0, 20}, V_DRAW},
  24.  
  25.     {{0, 0,  0}, V_EOF}
  26. };
  27.